home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / plot.hlp < prev    next >
Encoding:
Text File  |  1989-02-03  |  1.8 KB  |  37 lines

  1. PLOT (yexpr{,zexpr});  Output trace to graphics screen
  2.  
  3. The PLOT procedure uses the current scaling and labeling values to
  4. create a plot on the graphics screen of the values calculated for
  5. 'yexpr' during the implicit loop in which this call is executed. 
  6. Values along the X axis nominally correspond to the implicit loop
  7. variable (i.e. step time).  Plots versus some other variable can be
  8. accomplished via the XAXIS control statement.  In this case, the
  9. START, BIAS, and DUR controls specify the subset of the XAXIS data file
  10. to be used.  The number of points plotted is a function of the
  11. duration and step size parameters.
  12.  
  13. If more than one trace is generated then each trace is labeled with
  14. a number corresponding to the order in which the PLOT calls were
  15. entered in the source code.  Trace numbers appear above and to
  16. the right of their corresponding trace (unless the trace
  17. subsequently plots through the number).  Up to 25 traces may be
  18. accumulated on a single plot.
  19. +
  20. Plot scaling and labeling is determined by the control parameter
  21. values set when the first PLOT call is executed.  All subsequent
  22. plots are scaled accordingly until an ERASE procedure is executed. 
  23. Trace numbers are also reset when an ERASE executes.
  24.  
  25. DAN has a simulated 3D plotting mode that is automatically invoked when
  26. a PLOT statement contains more than one argument.  The second argument
  27. is considered to be the Z axis value.  A left handed coordinate system
  28. is used, so the Z axis extends into the screen.  Limited control over
  29. the apparent viewing angle is possible with the ANGLE control
  30. statement.  Certain restrictions apply to 3D mode; namely,
  31.  
  32.      - Use connected line segments for each trace.
  33.      - Draw from front to back.
  34.  
  35. If these restrictions are not observed, the hidden line algorithm
  36. used for 3D mode will not work.
  37.